home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / zm16src.lzh / MAKEFILE < prev    next >
Text File  |  1988-05-18  |  627b  |  30 lines

  1. #
  2. # Makefile for Mark Williams C
  3. #    Version 2.00 (or higher) required.
  4. #    Please ignore warnigs about a constant being promoted to long
  5. #    and about some unused variables.
  6. #    
  7. #     Edit config.h before make'ing.
  8. #
  9. #    Jwahar Bammi
  10. #
  11. #
  12.  
  13. SRC = common.c rz.c sz.c transfer.c util.c main.c tyme.c zm.c fileio.c \
  14. hi5025.s phone.c
  15.  
  16. OBJ =  fileio.o zm.o util.o rz.o sz.o common.o tyme.o transfer.o main.o \
  17. hi5025.o phone.o
  18.  
  19. CFLAGS = -O -V -VPEEP -DMWC=1
  20. LDFLAGS = -s -x -V
  21.  
  22. zmdm.prg : $(OBJ)
  23.     cc -O -o zmdm.prg $(OBJ) $(LDFLAGS)
  24.  
  25. $(OBJ) : common.h zmdm.h decl.h config.h
  26. transfer.o : expandar.c
  27.  
  28. clean:
  29.     rm *.o
  30.